home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / Make / source / glob / ChangeLog < prev    next >
Encoding:
Text File  |  1997-08-18  |  1.7 KB  |  45 lines

  1. Tue Aug 12 10:52:34 1997  Paul D. Smith  <psmith@baynetworks.com>
  2.  
  3.     * configure.in: Require autoconf 2.12.
  4.  
  5.     * glob: Updates from latest GNU libc glob code.
  6.  
  7.     * glob.c,glob.h,fnmatch.h: Change all WIN32 references to WINDOWS32.
  8.  
  9.     * glob.h: OSF4 defines macros in such a way that GLOB_ALTDIRFUNC
  10.     is not defined.  Added a test to the #if which defines it if
  11.     _GNU_SOURCE is defined; that's set by both glob.c and GNU make.
  12.  
  13.     * glob.c: SunOS4 w/ cc needs #include <stdio.h>, since assert.h
  14.     requires stderr but doesn't include stdio.h :-/.
  15.     (next_brace_sub): De-protoize function definition.
  16.     (glob): Cast __alloca(); on SunOS4 it uses the default return type
  17.     of int.
  18.     (glob): Irix defines getlogin_r() to return a char*; move the
  19.     extern for that into the _LIBC area since it isn't used except in
  20.     LIBC anyway.  Likewise, move extern getlogin() into the "else".
  21.  
  22. Sat Jul 20 21:55:31 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
  23.  
  24.     Win32 hacks from <Rob_Tulloh@tivoli.com>.
  25.     * posix/glob.c [WIN32]: Don't include <pwd.h>; don't use d_ino;
  26.     use void * for my_realloc; include <malloc.h> for alloca.
  27.     (glob) [WIN32]: Use "c:/users/default" for ~ if no HOME variable.
  28.     * posix/fnmatch.h [WIN32]: Use prototypes even if [!__STDC__].
  29.     * posix/glob.h: Likewise.
  30.  
  31. Fri Jul 19 16:56:41 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
  32.  
  33.     * posix/glob.h [!_AMIGA && !VMS]: Check this instead of just [!_AMIGA]
  34.     for `struct stat;' forward decl.
  35.  
  36. Sat Jun 22 10:44:09 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
  37.  
  38.     * posix/glob.c: Include <alloca.h> only [HAVE_ALLOCA_H], not [sparc].
  39.  
  40. Fri Jun 21 00:27:51 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
  41.  
  42.     * posix/fnmatch.c (fnmatch): Fix \*[*?]+ case to increment name ptr
  43.      only for ?s, not for *s.  Fix from Chet Ramey.
  44.  
  45.